home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 051-075 / scopedisk61 / dme / rexmacs / two.dme < prev    next >
Encoding:
Text File  |  1995-03-19  |  217 b   |  12 lines

  1. /* test to see if we can invoke ARexx from inside of dme .... */
  2.  
  3. parse source a b c d e f g h i
  4. say a b c d e f g h i
  5. parse arg j k l m n o
  6. say j k l m n o
  7. say "two ... calling three"
  8. three
  9. say "back to two"
  10. exit 0
  11.  
  12.